educational computer program - перевод на Английский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

educational computer program - перевод на Английский

SEQUENCE OF INSTRUCTIONS WRITTEN IN PROGRAMMING LANGUAGE TO PERFORM A SPECIFIED TASK WITH A COMPUTER
Computer programme; Computer code; Computer programs; Software program; Program (programming); Program (computer science); Program (computing); Computer Program; Software code; Program (computer); Computer Programs; Program file; Computer program code; Program module
  • A symbolic representation of an ALU
  • Computer memory map
  • 400x400px
  • DEC]] [[VT100]] (1978) was a widely used [[computer terminal]].
  • Switches for manual input on a [[Data General Nova]] 3, manufactured in the mid-1970s
  • Lovelace's description from Note G
  • [["Hello, World!" program]] by [[Brian Kernighan]] (1978)
  • A kernel connects the application software to the hardware of a computer.
  • NOT gate
  • A computer program written in an imperative language
  • hardware]].
  • Artist's depiction of Sacramento State University's Intel 8008 microcomputer (1972)
  • A sample function-level data-flow diagram
  • Fran Bilas]] programmed the [[ENIAC]] by moving cables and setting switches.
  • right
  • Physical memory is scattered around RAM and the hard disk. Virtual memory is one continuous block.

educational computer program      
educatief computer programma (een leerzaam computer programma)
program file         
programma bestand, een uitvoerbaar bestand voor het gebruik van een programma
educational software         
  • Educational software for learning [[Standard Chinese]] using [[Pinyin]].
SOFTWARE USED IN EDUCATION
Education software; Educational Software; Reading Progam; Reading program; Reading Program; Reading software; Reading programs; Reading programme; Courseware; Learning software; Baby computer; Educational computer; Educational game console; History of educational software; Digital tutor
educatieve software (educatief computer programma)

Определение

computer program

Википедия

Computer program

A computer program is a sequence or set of instructions in a programming language for a computer to execute. Computer programs are one component of software, which also includes documentation and other intangible components.

A computer program in its human-readable form is called source code. Source code needs another computer program to execute because computers can only execute their native machine instructions. Therefore, source code may be translated to machine instructions using the language's compiler. (Assembly language programs are translated using an assembler.) The resulting file is called an executable. Alternatively, source code may execute within the language's interpreter.

If the executable is requested for execution, then the operating system loads it into memory and starts a process. The central processing unit will soon switch to this process so it can fetch, decode, and then execute each machine instruction.

If the source code is requested for execution, then the operating system loads the corresponding interpreter into memory and starts a process. The interpreter then loads the source code into memory to translate and execute each statement. Running the source code is slower than running an executable. Moreover, the interpreter must be installed on the computer.